const net/http.http2frameHeaderLen

14 uses

	net/http (current package)
		h2_bundle.go#L1584: const http2frameHeaderLen = 9
		h2_bundle.go#L1786: 		buf := make([]byte, http2frameHeaderLen)
		h2_bundle.go#L1792: 	fh, _ := http2readFrameHeader(make([]byte, http2frameHeaderLen), strings.NewReader("HTTP/1.1 "))
		h2_bundle.go#L1805: 	_, err := io.ReadFull(r, buf[:http2frameHeaderLen])
		h2_bundle.go#L1850: 	headerBuf   [http2frameHeaderLen]byte
		h2_bundle.go#L1929: 	length := len(f.wbuf) - http2frameHeaderLen
		h2_bundle.go#L10817: 	return http2frameHeaderLen+settingSize*len(s) <= max
		h2_bundle.go#L10853: 	return http2frameHeaderLen+len(w.p) <= max
		h2_bundle.go#L10866: func (hp http2handlerPanicRST) staysWithinBuffer(max int) bool { return http2frameHeaderLen+4 <= max }
		h2_bundle.go#L10872: func (se http2StreamError) staysWithinBuffer(max int) bool { return http2frameHeaderLen+4 <= max }
		h2_bundle.go#L10883: 	return http2frameHeaderLen+len(w.data) <= max
		h2_bundle.go#L10893: 	return http2frameHeaderLen+len(w.pf.Data) <= max
		h2_bundle.go#L10902: func (http2writeSettingsAck) staysWithinBuffer(max int) bool { return http2frameHeaderLen <= max }
		h2_bundle.go#L11079: func (wu http2writeWindowUpdate) staysWithinBuffer(max int) bool { return http2frameHeaderLen+4 <= max }